home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************************
- FILE : kr_pat_scan.ph
- SHORTNAME : pattern scanner
- SNNS VERSION : 3.2
-
- PURPOSE : scanner for pattern files
- NOTES : preliminary
-
- AUTHOR : Michael Vogt
- DATE : 10.9.93
-
- CHANGED BY :
- IDENTIFICATION : @(#)kr_pat_scan.ph 1.2 3/15/94
- SCCS VERSION : 1.2
- LAST CHANGE : 3/15/94
-
- Copyright (c) 1990-1994 SNNS Group, IPVR, Univ. Stuttgart, FRG
-
- ******************************************************************************/
-
- #ifndef _KR_PAT_SCAN_DEFINED_
- #define _KR_PAT_SCAN_DEFINED_
-
- /* begin global definition section */
-
- int pplex(void);
- void scanner_await_pattern_end(void);
- void scanner_init_scanner(FILE *in_file);
-
- /* end global definition section */
-
- /* begin private definition section */
-
- #define yylval pplval
-
- static char *s_dotpos;
- static int scanner_pattern_end_flag;
-
- /* end private definition section */
-
- #endif
-
-